css: Add GtkCssStyleProperty::affects property
authorBenjamin Otte <otte@redhat.com>
Tue, 27 Jan 2015 03:32:09 +0000 (04:32 +0100)
committerBenjamin Otte <otte@redhat.com>
Tue, 27 Jan 2015 04:04:34 +0000 (05:04 +0100)
gtk/gtkcssstyleproperty.c
gtk/gtkcssstylepropertyimpl.c
gtk/gtkcssstylepropertyprivate.h
gtk/gtkcsstypesprivate.h

index 1590ed28ae7c4effd952cdc3b8ecf036fea0bc5e..5f99a1bc688f44263167ad67d78b323e8b516f1d 100644 (file)
@@ -39,6 +39,7 @@
 enum {
   PROP_0,
   PROP_ANIMATED,
+  PROP_AFFECTS,
   PROP_AFFECTS_SIZE,
   PROP_AFFECTS_FONT,
   PROP_ID,
@@ -84,6 +85,9 @@ gtk_css_style_property_set_property (GObject      *object,
     case PROP_ANIMATED:
       property->animated = g_value_get_boolean (value);
       break;
+    case PROP_AFFECTS:
+      property->affects = g_value_get_flags (value);
+      break;
     case PROP_AFFECTS_SIZE:
       property->affects_size = g_value_get_boolean (value);
       break;
@@ -116,6 +120,9 @@ gtk_css_style_property_get_property (GObject    *object,
     case PROP_ANIMATED:
       g_value_set_boolean (value, property->animated);
       break;
+    case PROP_AFFECTS:
+      g_value_set_flags (value, property->affects);
+      break;
     case PROP_AFFECTS_SIZE:
       g_value_set_boolean (value, property->affects_size);
       break;
@@ -224,6 +231,14 @@ _gtk_css_style_property_class_init (GtkCssStylePropertyClass *klass)
                                                          P_("Set if the value can be animated"),
                                                          FALSE,
                                                          G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+  g_object_class_install_property (object_class,
+                                   PROP_AFFECTS,
+                                   g_param_spec_flags ("affects",
+                                                       P_("Affects"),
+                                                       P_("Set if the value affects the sizing of elements"),
+                                                       GTK_TYPE_CSS_AFFECTS,
+                                                       0,
+                                                       G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
   g_object_class_install_property (object_class,
                                    PROP_AFFECTS_SIZE,
                                    g_param_spec_boolean ("affects-size",
@@ -367,6 +382,23 @@ _gtk_css_style_property_is_animated (GtkCssStyleProperty *property)
   return property->animated;
 }
 
+/**
+ * _gtk_css_style_property_get_affects:
+ * @property: the property
+ *
+ * Returns all the things this property affects. See @GtkCssAffects for what
+ * the flags mean.
+ *
+ * Returns: The things this property affects.
+ **/
+GtkCssAffects
+_gtk_css_style_property_get_affects (GtkCssStyleProperty *property)
+{
+  g_return_val_if_fail (GTK_IS_CSS_STYLE_PROPERTY (property), 0);
+
+  return property->affects;
+}
+
 /**
  * _gtk_css_style_property_affects_size:
  * @property: the property
index 9f6b48192d7c6c39a326ef1c2d2b7a9a962484ca..d1ce9725cd9642e1c23cd27f3b93bdf63eae5b25 100644 (file)
@@ -91,6 +91,7 @@ gtk_css_style_property_register (const char *                   name,
 
   node = g_object_new (GTK_TYPE_CSS_STYLE_PROPERTY,
                        "value-type", value_type,
+                       "affects", affects,
                        "affects-size", (affects & (GTK_CSS_AFFECTS_CLIP | GTK_CSS_AFFECTS_SIZE)) ? TRUE : FALSE,
                        "affects-font", (affects & GTK_CSS_AFFECTS_FONT) ? TRUE : FALSE,
                        "animated", (flags & GTK_STYLE_PROPERTY_ANIMATED) ? TRUE : FALSE,
index fb851899ebe32c27c1011e2baf54a4802bdd8392..bd72bc9676f62d834cd7c2ad1a1cccec0c40c649 100644 (file)
@@ -47,6 +47,7 @@ struct _GtkCssStyleProperty
 
   GtkCssValue *initial_value;
   guint id;
+  GtkCssAffects affects;
   guint inherit :1;
   guint animated :1;
   guint affects_size :1;
@@ -73,6 +74,7 @@ GtkCssStyleProperty *   _gtk_css_style_property_lookup_by_id    (guint
 
 gboolean                _gtk_css_style_property_is_inherit      (GtkCssStyleProperty    *property);
 gboolean                _gtk_css_style_property_is_animated     (GtkCssStyleProperty    *property);
+GtkCssAffects           _gtk_css_style_property_get_affects     (GtkCssStyleProperty    *property);
 gboolean                _gtk_css_style_property_affects_size    (GtkCssStyleProperty    *property);
 gboolean                _gtk_css_style_property_affects_font    (GtkCssStyleProperty    *property);
 guint                   _gtk_css_style_property_get_id          (GtkCssStyleProperty    *property);
index b5866231859db79ab25f0af759af48ae224a4eaa..1f96f7d7bb4002641a757a9fb06eb18ecd252052 100644 (file)
@@ -96,7 +96,7 @@ typedef enum /*< skip >*/ {
  *
  * Note that multiple values can be set.
  */
-typedef enum /*< skip >*/ {
+typedef enum {
   GTK_CSS_AFFECTS_FOREGROUND = (1 << 0),
   GTK_CSS_AFFECTS_BACKGROUND = (1 << 1),
   GTK_CSS_AFFECTS_BORDER = (1 << 2),